1
2
3
4
5
if Int(strToCheck) == nil {
print("Not Int")
} else {
print("Is Int")
}
Next